   /* FOOTER */
.footer {
    background:black;
    color: #cfd8dc;
    padding: 70px 0 20px;
    font-size: 15px;
}

.footer p {
    line-height: 1.7;
}

.footer-title {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Logo */
.footer-logo img {
    max-width: 200px;
    height: auto;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cfd8dc;
    text-decoration: none;
    transition: 0.3s;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffb703;
    padding-left: 5px;
}

/* Contact */
.contact-info {
    margin-bottom: 8px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
   
}
.footer-dec{
    text-align: left;
}
.social-links a {
    width: 40px;
    height: 40px;
    background:#ffb703 ;
    color: #0a1a37;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    font-size: 16px;
    text-decoration: none;
}

.social-links a:hover {
    background: white;
    color: #000;
    transform: translateY(-4px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-logo img {
        margin: auto;
    }
}


    /* ================= RESPONSIVE ================= */
    @media (max-width: 768px) {
      .cta-strip h2 {
        font-size: 1.9rem;
        text-align: center;
      }

      .cta-actions {
        justify-content: center !important;
        margin-top: 25px;
      }
    }


